-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove qmake project files. #603
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Alexander Wenzel <[email protected]>
@hannesa2 Can i remove this? Is qmake build necessary for MacOS? C:\workspace\github\covesa\dlt-viewer\scripts\darwin\build_cmake.sh (2 hits) |
Signed-off-by: Alexander Wenzel <[email protected]>
Update documentation. Signed-off-by: Alexander Wenzel <[email protected]>
@hannesa2 Please review if this PR is ok for MacOs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As long as the built artifacts starts (it does for MacOS!) all is fine
build/ | ||
.project | ||
Makefile | ||
buildlib/ | ||
release/ | ||
.cproject | ||
*.pro.user* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if this helps anyone or improve something.
But it's not wrong.
@@ -19,7 +19,7 @@ Alexander Wenzel <[email protected]> | |||
* sudo apt install libqt5serialport5-dev | |||
* mkdir build | |||
* cd build | |||
* qmake ../BuildDltViewer.pro | |||
* cmake .. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This complete INSTALL.md is always outdated like a newspaper, I would simply point to the CI build script and delete complete file
@@ -14,13 +14,13 @@ cd "${BUILD_DIR}" | |||
if [[ $(uname -m) == 'arm64' ]]; then | |||
Qt5_DIR="/opt/homebrew/opt/qt@5" | |||
echo "Build with cmake $(uname -m) $Qt5_DIR" | |||
qmake ../BuildDltViewer.pro | |||
# qmake ../BuildDltViewer.pro |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could delete lines complete, including the echo before
# cmake .. | ||
else | ||
Qt5_DIR="/usr/local/opt/qt" | ||
echo "Build with qmake $(uname -m) $Qt5_DIR" | ||
qmake ../BuildDltViewer.pro | ||
make | ||
# qmake ../BuildDltViewer.pro |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
No description provided.